-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
37 lines (31 loc) · 1.15 KB
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import java.util.Scanner;
public class CoinChange {
public static int coinChange(int[] coins, int amount) {
int[] dp = new int[amount + 1];
for (int i = 1; i <= amount; i++) {
dp[i] = Integer.MAX_VALUE;
for (int coin : coins) {
if (i >= coin && dp[i - coin] != Integer.MAX_VALUE) {
dp[i] = Math.min(dp[i], dp[i - coin] + 1);
}
}
}
return dp[amount] == Integer.MAX_VALUE ? -1 : dp[amount];
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter the number of coin types: ");
int n = sc.nextInt();
int[] coins = new int[n];
System.out.println("Enter the coin denominations:");
for (int i = 0; i < n; i++)
coins[i] = sc.nextInt();
System.out.print("Enter the amount: ");
int amount = sc.nextInt();
int result = coinChange(coins, amount);
if (result == -1)
System.out.println("No solution exists.");
else
System.out.println("Minimum coins needed: " + result);
}
}